home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_SC3.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  5.3 KB  |  195 lines

  1. ;
  2. ;    SuperCalc3 Pop-up Menu Configuration
  3. ;
  4. Comment        ("Configured for SuperCalc3")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (13, 8)        ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (0, 12)        ; (Col, Row) of menu center
  14. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  15.  
  16. ;
  17. ;    Cursor Definitions
  18. ;
  19. ArrowKeys: Cursor
  20. (
  21.     Left    ([Left])
  22.     Right    ([Right])
  23.     Up    ([Up])
  24.     Down    ([Down])
  25. )
  26.  
  27. ;
  28. ;    Button Definitions
  29. ;
  30. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  31. LBC:    Button    (Menu(Calc))        ; Left button, Calc Menu
  32. LBF:    Button    (Menu(File))        ; Left button, File Menu
  33. LBV:    Button    (Menu(View))        ; Left button, View Menu
  34. MB:    Button    (Keys([Enter]))        ; Middle button
  35. RB:    Button    (Keys([Esc]))        ; Right button
  36.  
  37. ;
  38. ;    Menu Definitions
  39. ;
  40. Main: Menu
  41. (
  42.     Title    ("Main")
  43.     Item    ("Replicate",           Keys("/R"))
  44.     Item    (":",                   Keys(":"))
  45.     Item    ("No Adjust",           Keys("N"))
  46.     Item    ("Adjust",              Keys("A"))
  47.     Item    ("Calc Menu",           Menu(Calc), Button(LBC))
  48.     Item    ("File Menu",           Menu(File), Button(LBF))
  49.     Item    ("View Menu",           Menu(View), Button(LBV))
  50.     Item    ("More Menus",          Menu(More))
  51.     Item    ("Edit",                Keys("/E"))
  52.     Item    ("Blank",               Keys("/B"))
  53.     Item    ("Delete",              Menu(Delete))
  54.     Item    ("Insert",              Menu(Insert))
  55.     Item    ("Change Window",       Keys(";"))
  56.     Item    ("Home",                Keys([Home]))
  57. )
  58.  
  59. Calc: Menu
  60. (
  61.     Title    ("Calc")
  62.     Item    ("Sum(",                Keys("Sum("))
  63.     Item    (":",                   Keys(":"))
  64.     Item    (")",                   Keys(")"))
  65.     Item    ("(",                   Keys("("))
  66.     Item    ("+",                   Keys("+"))
  67.     Item    ("-",                   Keys("-"))
  68.     Item    ("*",                   Keys("*"))
  69.     Item    ("/",                   Keys("/"))
  70.     Item    ("^",                   Keys("^"))
  71.     Item    ("Edit",                Keys("/E"))
  72.     Item    ("Recalc",              Keys("!"))
  73.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  74. )
  75.  
  76. File: Menu
  77. (
  78.     Title    ("File")
  79.     Item    ("Load Current File",   Keys("/L"[Esc]))
  80.     Item    ("Directory",           Keys("/L"[Enter]))
  81.     Item    ("Load File",           Keys("/L"))
  82.     Item    ("Save Current File",   Keys("/S"[Esc]))
  83.     Item    ("Save File",           Keys("/S"))
  84.     Item    ("Delete File",         Keys("/DF"))
  85.     Item    ("Output Display",      Keys("/OD"))
  86.     Item    ("Output Contents",     Keys("/OC"))
  87.     Item    ("Zap",                 Keys("/Z"))
  88.     Item    ("Yes",                 Keys("Y"))
  89.     Item    ("Quit",                Keys("/Q"))
  90.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  91. )
  92.  
  93. View: Menu
  94. (
  95.     Title    ("View")
  96.     Item    ("View Current Graph",  Keys("/V"[Enter]))
  97.     Item    ("Data Range",          Keys("/VD"))
  98.     Item    ("View Commands",       Keys("/V"))
  99.     Item    ("Graph Pie",           Keys("/VGP"))
  100.     Item    ("Graph Bar",           Keys("/VGB"))
  101.     Item    ("Graph Stacked Bar",   Keys("/VGS"))
  102.     Item    ("Graph Line",          Keys("/VGL"))
  103.     Item    ("Graph Hi-Lo",         Keys("/VGH"))
  104.     Item    ("Graph X-Y",           Keys("/VGX"))
  105.     Item    ("Graph Area",          Keys("/VGA"))
  106.     Item    ("Options",             Keys("/VO"))
  107.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  108. )
  109.  
  110. More: Menu
  111. (
  112.     Title    ("More")
  113.     Item    ("Move",                Keys("/M"))
  114.     Item    ("Protect",             Keys("/P"))
  115.     Item    ("Unprotect",           Keys("/U"))
  116.     Item    ("Window Menu",         Menu(Window))
  117.     Item    ("Title Menu",          Menu(Title))
  118.     Item    ("Format Menu",         Menu(Format))
  119.     Item    ("Global Menu",         Menu(Global))
  120. )
  121.  
  122. Window: Menu
  123. (
  124.     Title    ("Window")
  125.     Item    ("Horizontal",          Keys("/WH"))
  126.     Item    ("Vertical",            Keys("/WV"))
  127.     Item    ("Clear",               Keys("/WC"))
  128.     Item    ("Synchronized",        Keys("/WS"))
  129.     Item    ("Unsynchronized",      Keys("/WU"))
  130. )
  131.  
  132. Title: Menu
  133. (
  134.     Title    ("Title")
  135.     Item    ("Horizontal",          Keys("/TH"))
  136.     Item    ("Vertical",            Keys("/TV"))
  137.     Item    ("Both",                Keys("/TB"))
  138.     Item    ("Clear",               Keys("/TC"))
  139. )
  140.  
  141. Format: Menu
  142. (
  143.     Title    ("Format")
  144.     Item    ("Format Column",       Keys("/FC"))
  145.     Item    ("Format Row",          Keys("/FR"))
  146.     Item    ("Format Entry",        Keys("/FE"))
  147.     Item    ("Define Format Table", Keys("/FD"))
  148.     Item    ("Format Column Width", Keys("/FC"[Enter]))
  149. )
  150.  
  151. Global: Menu
  152. (
  153.     Title    ("Global")
  154.     Item    ("Global Command",      Keys("/G"))
  155.     Item    ("Column Width",        Keys("/FG"))
  156.     Item    ("Recalc Auto",         Keys("/GRA"))
  157.     Item    ("Recalc Manual",       Keys("/GRM"))
  158.     Item    ("Recalc Order Columns",Keys("/GC"))
  159.     Item    ("Recalc Order Rows",   Keys("/GR"))
  160.     Item    ("Format General",      Keys("/FGG"))
  161.     Item    ("Format Integer",      Keys("/FGI"))
  162.     Item    ("Format Currency",     Keys("/FG$"))
  163.     Item    ("Format Left",         Keys("/FGL"))
  164.     Item    ("Format Right",        Keys("/FGR"))
  165.     Item    ("Format Exponential",  Keys("/FGE"))
  166.     Item    ("Format Default",      Keys("/FGD"))
  167. )
  168.  
  169. Insert: Menu
  170. (
  171.     Title    ("Insert")
  172.     Item    ("Row",                 Keys("/IR"))
  173.     Item    ("Column",              Keys("/IC"))
  174. )
  175.  
  176. Delete: Menu
  177. (
  178.     Title    ("Delete")
  179.     Item    ("Row",                 Keys("/DR"))
  180.     Item    ("Column",              Keys("/DC"))
  181. )
  182.  
  183.  
  184. ;
  185. ;    Mouse Definition
  186. ;
  187. Mouse
  188. (
  189.     Left    (LBM)
  190.     Middle    (MB)
  191.     LeftRight(MB)
  192.     Right    (RB)
  193.     Cursor    (ArrowKeys)
  194. )
  195.